home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-20 / bb21tu.zip / DIS.DOC < prev    next >
Text File  |  1991-05-10  |  3KB  |  105 lines

  1. Distribution lists is how you send a message to more than one mailbox.
  2. These are files of the type xxxx.DIS and reside in the messages
  3. subdirectory pointed to by PARMS.BB
  4.  
  5. As a message arrives, the ACTION.BB file is checked.  If needed, the
  6. distribution list name is changed from the default name of the @BBS.
  7. The a search is made of the message subdirectory for a file of format
  8. xxx.DIS unless the name from the action file contains a period..  If one
  9. is found then a distribution list will be used.
  10.  
  11. Format of xxxx.DIS file
  12.  
  13. call1a call1b
  14. call2a call2b
  15. etc
  16.  
  17. call1a is the routing code to use for sending a message.  This will show
  18. up in the "L" command list and will be matched against ROUTE.BB.
  19.  
  20. call1b is matched against the call of the station sending the message
  21. and the call of each BBS header in the incoming message.  If they match,
  22. then this distribution list item is marked as having already been
  23. forwarded to.  If call1b is missing, then call1a is used instead. call1b
  24. can actually be a list of calls.
  25.  
  26. The .DIS file can also contain authorization lines.
  27.  
  28.    OK call1 call2 call3 ...
  29.  
  30. If the originating station is in this list then the distribution proceeds.
  31.  
  32.    NOT_OK call1 call2 call3...
  33.  
  34. If the originating station is NOT in this list then the distribution proceeds.
  35.  
  36. Multiple NOT_OK are permitted.  The actual call1 call2 etc are patterns (see
  37. WILDCARD.DOC)
  38.  
  39. Example:
  40.  
  41.     NOT_OK N7XXX
  42.     GILROY AA4RE
  43.     FRESNO K6RAU N6OA
  44.  
  45. In the last example, a message that arrives from either K6RAU or N6OA
  46. will be marked as having been forwarded to FRESNO.  It will also be
  47. marked as forwarded to FRESNO if a message arrives from X7XXX but there
  48. is a K6RAU or N6OA header in the message.
  49.  
  50. More Examples:
  51.  
  52. ALLUS.DIS
  53. ---------
  54.  
  55. AA4RE
  56. WB9TPG
  57.  
  58. ROUTE.BB
  59. --------
  60.  
  61. AA4RE  KB7TV
  62. WB9TPG WB9TPG
  63.  
  64. Now SB ALL @ ALLUS.  Two copies will be sent.  One goes to AA4RE and one
  65. to WB9TPG.  These calls are looked up in the ROUTE.BB file.  It says
  66. AA4RE goes to KB7TV while WB9TPG goes to WB9TPG.  KB7TV and WB9TPG will
  67. be the calls used when looking in the PATH.BB.
  68.  
  69. So..  The @ BBS field points to the .DIS file.  The entries in .DIS point
  70. to the ROUTE.BB file and ROUTE.BB points to PATH.BB....
  71.  
  72. Sending BULLETINS to a single station
  73. -------------------------------------
  74.  
  75. If you are going to send bulletins to a single station, you should
  76. create a .DIS file anyway.  The benefits are that you will keep all
  77. messages after forwarding (even private) and that you will not send the
  78. station a bulletin if he sent it to you.
  79.  
  80. Sending Private mail First
  81. --------------------------
  82.  
  83.  
  84. What I have set up looks like
  85.  
  86. USA.DIS
  87. -------
  88.     GILROY WB6ZVW
  89.     FRESNO KE6BX
  90.  
  91. This sends a copy of anything @USA to GILROY and FRESNO.  If I receive the
  92. message from WB6ZVW then GILROY has already received a copy so I don't
  93. send one back.
  94.  
  95. ROUTE.BB
  96. --------
  97.     WB6ZVW WB6ZVW
  98.     KE6BX  KE6BX
  99.     GILROY WB6ZVW
  100.     FRESNO KE6BX
  101.  
  102. This says to send WB6ZVW and GILROY to WB6ZVW.  Things will forward in that
  103. order.  This way private messages (@ WB6ZVW) will go first before things
  104. addressed to @ USA
  105.